diff options
| author | zephex-alt <[email protected]> | 2024-04-29 03:55:49 +0000 |
|---|---|---|
| committer | zephex-alt <[email protected]> | 2024-04-29 03:55:49 +0000 |
| commit | 0334cb2a8d79f511b95bd71ed5ee20a38077525c (patch) | |
| tree | fc48ccefdc340aea02d84376d97d5db65de0a2c4 /src/app/anime/[id]/page.jsx | |
| parent | removed edge runtime (diff) | |
| download | dramalama-0334cb2a8d79f511b95bd71ed5ee20a38077525c.tar.xz dramalama-0334cb2a8d79f511b95bd71ed5ee20a38077525c.zip | |
code maintainence
Diffstat (limited to 'src/app/anime/[id]/page.jsx')
| -rw-r--r-- | src/app/anime/[id]/page.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/anime/[id]/page.jsx b/src/app/anime/[id]/page.jsx index bb7640f..14a5974 100644 --- a/src/app/anime/[id]/page.jsx +++ b/src/app/anime/[id]/page.jsx @@ -19,8 +19,8 @@ export default async function AnimeInfo({ params }) { <p>{info.title}</p>
<Image
src={info.image}
- width={175}
- height={256}
+ width={180}
+ height={260}
alt="Drama"
priority
/>
@@ -46,7 +46,7 @@ export default async function AnimeInfo({ params }) { <p className={styles.animeRelease}>
Release year:
<span>
- {info && info.releaseDate}, {info && info.status}
+ {" "}{info && info.releaseDate}, {info && info.status}
</span>
</p>
</div>
|